/*
 * OOT Library Class
 *
 */

unit
class OOTLexer
    inherit Lexer in "%oot/support/lib/Lexer/Lexer"
    export Initialize

    function Initialize(srcFile: string, flags: int): boolean
	var fullFlags : int := flags | lbitOOTescape

	result InitializeGeneral(srcFile, "%oot/support/lib/lexer/oot.sdf", fullFlags)
    end Initialize

end OOTLexer

